/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

#container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

.zero-group{
  position: absolute;
  top: 1%;
  left: 1%;
}

.zero-group .btn{
  width: 30px;
  height: 30px;
  margin-top: 10%;
  display: flex;
  border: 0px solid #F1F1F1;
  transition: all .3s ease;
}
.one-group{
    position: absolute;
    top: 1%;
    right: 1%;
}

.one-group .btn{
    width: 30px;
    height: 30px;
    display: flex;
    border: 0px solid #F1F1F1;
    transition: all .3s ease;
}


.two-group{
    position: absolute;
    bottom: 1%;
    right:  1%;
    display: flex;
    flex-direction: row;

}

.two-group .btn{
    min-width: 35px;
    min-height: 35px;
    margin: auto;
    display: flex;
    transition: all .3s ease;
    border: 0px solid #F1F1F1;
}

.zero-group .btn .icon, .one-group .btn .icon, .two-group .btn .icon{
    width: 25px;
    height: 25px;
    display: block;
    margin: auto;
    transition: all .3s ease;

}

.zero-group .btn:hover, .one-group .btn:hover, .two-group .btn:hover{
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    box-shadow: 0px 0px 5px rgba(0,0,0,.2);
    transform: scale(1.05);
    transition: all .3s ease;
    border-radius: 5px;
    border: 0px solid #D2D2D2;

}



/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }


.preloader-screen {
    position: fixed;
    z-index: 99999;
    display: block;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    color: #333333;
  }
  
  .section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .preloader-scooter-background {
    position: absolute;
      display: block;
      overflow: hidden;
      width: 30%;
      height: 100%;
      margin-right: auto;
      margin-left: auto;
      left: 0px;
      right: 0px;
      bottom: -80px;
      z-index: 999;
  }
  .loading-text {
      display: block;
    margin-top: 100%;
    margin-bottom: 12px;
    font-family: Barlowcondensed, sans-serif;
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .l_bar {
    width:0%;
    margin: 1em auto;
    margin-left: 0;
    text-align: left;
    border: none;
    height: 5px;
    border-radius: 5px;
    background: #333333;
  }
  .l_img{
    position: absolute;
    top: 90px;
    width: 100%;
    display: block;
  }

  @media only screen and (max-device-width:480px) {
    .l_img{
      top: 45px;
    }
    .l_bar {
      height: 4px;
    }
    .loading-text {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
  }
  }
  
/*  @media only screen and (max-device-width:480px) {
    .preloader-screen {
      position: fixed;
      z-index: 99999;
      display: block;
      width: 100%;
      height: 100%;
      background: rgb(255, 255, 255);
      color: #666;
    }
    
    .section {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .preloader-scooter-background {
      position: absolute;
        display: block;
        overflow: hidden;
        width: 80%;
        height: 100%;
        margin-right: auto;
        margin-left: auto;
        left: 0px;
        right: 0px;
        bottom: -200px;
        z-index: 999;
    }
    .loading-text {
      display: block;
      margin-top: 100%;
      margin-bottom: 12px;
      font-family: Barlowcondensed, sans-serif;
      color: #696969;
      font-size: 40px;
      font-weight: 700;
      text-align: center;
    }
    .l_bar {
      width:0%;
      margin:1em auto;
      border:none;
      height: 4px;
      background: #de3945;
    }
    .l_img{
      position: absolute;
      width: 100%;
      display: block;
    }
  }*/